Project Management

1. My first sketches on my final porject

The project focuses on changing the mindset of design for ageing by thinking about interactive play devices to mitigate the cognitive decline of such individuals

2. Website creation

This week I had my first approach in a very long time to html so I could create this site. I believe my notes functioned as a tutorial, I'll write it right here.

did some research to understand what GIT is and how to use it. Git is a distributed version control system that tracks changes to code, allowing multiple developers to collaborate efficiently on a project. It manages change history through commits, organizes work into branches, and makes it easy to merge different versions. Developers can send and receive code to and from remote repositories, such as GitHub or GitLab, ensuring synchronized and organized collaboration. Git also allows selective preparation of changes before committing them, making it an essential tool for software development .


1. What is Git and Why Should You Use It?

So, what is Git in a nutshell? This is an important section to absorb, because if you understand what Git is and the fundamentals of how it works, then using Git effectively will probably be much easier for you. As you learn Git, try to clear your mind of the things you may know about other VCSs, such as CVS, Subversion, or Perforce — doing so will help you avoid subtle confusion when using the tool. Even though Git’s user interface is fairly similar to these other VCSs, Git stores and thinks about information in a very different way, and understanding these differences will help you avoid becoming confused while using it

2. Install GIT on the computer and also configure VsCodium, linking it to the GIT account

Go to the official Git website.

Choose and download the correct version for your operating system (Windows, macOS, or Linux).

Run the installation file and follow the on-screen instructions.

To confirm the installation, open a terminal

GIT - for my origin repository and project management.


3. Setting Up Your Git Profile

Before using Git, you need to configure your name and email address so that your changes are attributed correctly. To do this, you need to run the commands:

git config --global user.name "Your Name".

git config --global user.email "your_email@example.com".


4. Linking Git to GitHub/GitLab via SSH

A key was created. In this sense, the steps to generate an SSH key were developed. Two keys were created: one private and one public. The idea is to use the keys for encrypted communication between the laptop and Git. After this, I can work locally (on my computer) on the project. I only have to do this once for my portable device. If I want to work on another device, I have to do it again .